$intIndex = Find ( <Target string>,<Search string>, [Offset] )
Online IVR Tutorial
Parameters Return Value Example
    $a="ABCDEFGABCD" $b=Find($a,"CD",4) display $b
  • Here search for the substring "CD" starts from offset value 4. Thus, $b will contain 9.

  • If the offset value is given as 1 then $b will contain 2.